@-webkit-keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 199, 177, 0.4); }
    75%, 100% { box-shadow: 0 0 0 2rem rgba(0, 199, 177, 0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 199, 177, 0.4); }
    75%, 100% { box-shadow: 0 0 0 2rem rgba(0, 199, 177, 0); }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    font-size: 100%;
    min-height: 100vh;
}

.chat-widget {
    position: fixed;
    right: 3rem;
    width: 100px;
    height: 100px;
    bottom: 3rem;
    z-index: 8000;
}

.chat-widget--bubble {
    opacity: 0;
    transform: translateY(3rem) scale(0, 0) skew(0deg, 50deg);
    display: block;
    min-width: 410px;
    position: absolute;
    right: -20px;
    bottom: 6rem;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform-origin: 90% 100%;
    transition: opacity 1000ms ease, transform 1000ms ease;
    padding: 1rem;
}

.chat-widget--bubble h6{
    color: rgb(139, 69, 19);
    
    b{
        color: black;
    }
}
.chat-widget--bubble.-active {
    opacity: 1;
    transform: translateY(0rem) scale(1, 1) skew(0deg, 0deg);
}

.chat-widget--bubble::after {
    content: "";
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    right: 3rem;
    bottom: -0.7rem;
    background-color: #ffffff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    transform: rotate(45deg);
}

.chat-widget--button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    position: absolute;
    right: -20px;
    bottom: 30px;
    z-index: 7;
    border-radius: 50%;
    background-color: #00c7b1;
    box-shadow: 0 0 0 -2px black, 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    transition: box-shadow 250ms ease;
    cursor: pointer;
    border: none;
}

.chat-widget--button:hover {
    box-shadow: 0 16px 10px -8px rgba(0, 0, 0, 0.3), 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}

.chat-widget--button::before,
.chat-widget--button::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 50%;
    animation: pulse 2s ease-in-out 5;
}

.chat-widget--button::after {
    animation-delay: 0.5s;
}

.chat-widget--icon {
    width: 2.0rem;
    height: auto;
}

.chat-widget--icon path {
    fill: white;
}

/* Custom link styles */
.style2 {
    color: #00b39f;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.style2:hover {
    color: #007a6e;
}

.chat-widget--bubble img {
    margin: auto ;
    height: 120px;
    width: 100%;
}

.online-purchase {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.online-purchase a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
}

.online-purchase a:hover {
    text-decoration: underline;
}

.blinking-dot {
    width: 20px;
    height: auto;
    margin-right: 5px;
}
